home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / msoftapp.zip / CIRCFRM.CPP < prev    next >
C/C++ Source or Header  |  1993-06-01  |  431b  |  16 lines

  1. #include "stdafx.h"
  2. #include "circfrm.h"
  3.  
  4. IMPLEMENT_DYNCREATE(CCircleFrame, CMDIChildWnd)
  5.  
  6. BOOL CCircleFrame::PreCreateWindow(CREATESTRUCT& cs)
  7.     {
  8.     // By turning off the default MFC-defined FWS_ADDTOTITLE style,
  9.     // the framework will use first string in the document template
  10.     // STRINGTABLE resource instead of the document name.
  11.  
  12.     cs.style &= ~(LONG)FWS_ADDTOTITLE;
  13.     return CMDIChildWnd::PreCreateWindow(cs);
  14.     }
  15.  
  16.